home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / Forms Misc / password-verify.izs < prev    next >
Text File  |  2005-09-28  |  2KB  |  110 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Password Verifier
  4.  
  5. <!/TITLE>
  6.  
  7. <!DESCRIPTION>Keep your visitors from submitting their form until their "password" and "re-enter password" fields match, for verification purposes. They get an error message telling them to re-enter the passwords if they do not match. <!/DESCRIPTION> 
  8.  
  9. <!CATEGORY>Forms<!/CATEGORY>
  10.  
  11. <!SCRIPT>
  12. <!-- START OF SCRIPT -->
  13.  
  14.  
  15. <!-- HOW TO INSTALL PASSWORD VERIFIER:
  16.  
  17.   1.  Copy code into the HEAD section of document
  18.   2.  Put last coding into the BODY section of document  -->
  19.  
  20. <!-- STEP ONE: Add code into HEAD section of document  -->
  21.  
  22. <SCRIPT LANGUAGE="JavaScript">
  23. <!-- Original:  Carey Walker (carey.walker@citicorp.com)  -->
  24.  
  25.  
  26. <!-- Begin
  27. function checkPw(form) {
  28. pw1 = form.pw1.value;
  29. pw2 = form.pw2.value;
  30.  
  31. if (pw1 != pw2) {
  32. alert ("\nYou did not enter the same new password twice. Please re-enter your password.")
  33. return false;
  34. }
  35. else return true;
  36. }
  37. // End -->
  38. </script>
  39.  
  40. <!-- STEP TWO: Add code into BODY section of document  -->
  41.  
  42. <form onSubmit="return checkPw(this)">
  43. <center>
  44. <table border=0>
  45. <tr>
  46. <td>Password:</td><td><input type=text name=pw1 size=10></td>
  47. </tr>
  48. <tr>
  49. <td>Re-enter:</td><td><input type=text name=pw2 size=10></td>
  50. </tr>
  51. <tr>
  52. <td colspan=2 align=center><input type=submit value="Submit!"></td>
  53. </tr>
  54. </table>
  55. </form>
  56.  
  57. <!-- END OF SCRIPT -->
  58. <!/SCRIPT>
  59.  
  60. <!PREVIEW>
  61. <!-- START OF SCRIPT -->
  62.  
  63.  
  64. <!-- HOW TO INSTALL PASSWORD VERIFIER:
  65.  
  66.   1.  Copy code into the HEAD section of document
  67.   2.  Put last coding into the BODY section of document  -->
  68.  
  69. <!-- STEP ONE: Add code into HEAD section of document  -->
  70.  
  71. <SCRIPT LANGUAGE="JavaScript">
  72. <!-- Original:  Carey Walker (carey.walker@citicorp.com)  -->
  73.  
  74.  
  75. <!-- Begin
  76. function checkPw(form) {
  77. pw1 = form.pw1.value;
  78. pw2 = form.pw2.value;
  79.  
  80. if (pw1 != pw2) {
  81. alert ("\nYou did not enter the same new password twice. Please re-enter your password.")
  82. return false;
  83. }
  84. else return true;
  85. }
  86. // End -->
  87. </script>
  88.  
  89. <!-- STEP TWO: Add code into BODY section of document  -->
  90.  
  91. <form onSubmit="return checkPw(this)">
  92. <center>
  93. <table border=0>
  94. <tr>
  95. <td>Password:</td><td><input type=text name=pw1 size=10></td>
  96. </tr>
  97. <tr>
  98. <td>Re-enter:</td><td><input type=text name=pw2 size=10></td>
  99. </tr>
  100. <tr>
  101. <td colspan=2 align=center><input type=submit value="Submit!"></td>
  102. </tr>
  103. </table>
  104. </form>
  105.  
  106. <!-- END OF SCRIPT -->
  107. <!/PREVIEW>
  108.  
  109. <!RELATED>NONE<!/RELATED>
  110.